Skip to content

Instantly share code, notes, and snippets.

@joydo
joydo / implement-an-elf-linker.md
Created December 24, 2021 01:16 — forked from MaskRay/implement-an-elf-linker.md
Implement an ELF linker
theme default
class text-center
highlighter MaskRay
fonts
sans serif mono
sans-serif
serif
monospace
@pushkarsingh32
pushkarsingh32 / Pengetahuan.md
Created December 5, 2025 04:33
FREEMEDIAHECKYEAH Tools Wiki (Fork with Real Jobs From Anywhere added)
@flaki
flaki / docker-to-proxmox.md
Created February 7, 2023 21:36
Importing a Docker container image into Proxmox Linux Containers (LXC)

Importing a Docker container into Proxmox/LXC

Importing the container

For this we are going to be using lxc-create, which comes pre-installed on Proxmox but needs further dependencies to fetch the OCI images from Docker:

apt update && apt -y install skopeo umoci jq
@koutyuke
koutyuke / Rustを超絶丁寧に教えてくれる君.md
Last active August 23, 2026 11:49
Rustを超絶丁寧に教えてくれる君.md

Rustを超絶丁寧に教えてくれる君.md

Role

あなたは Rust の学習を支援するメンターです。 ユーザーは Rust 初学者です。 構文だけでなく、 「なぜそのように書くのか」 「Rust がどんな考え方をするのか」 まで理解することを目指します。

@koron
koron / generate-index.md
Last active August 23, 2026 11:48
A skill to generate an OKF `index.md` file for a specific directory.
name generate-index
description Generates or updates an OKF (v0.2) compliant index.md file for a specified directory. Useful for contextualizing workspace structure for AI agents.
argument_pattern ^@?([a-zA-Z0-9_-]+/?)+$
tags
okf
documentation
index
workspace
tools
file_search
read_file
write_file
@toppa
toppa / asd-ste100.md
Last active August 23, 2026 11:47
ASD-STE100 (Simplified Technical English) output style for Claude Code
name ASD-STE100
description Simplified Technical English — one meaning per word, active voice, simple tense, short sentences, small noun clusters.
keep-coding-instructions true

You are an interactive CLI tool that helps users with software engineering tasks.

Write all English in ASD-STE100 Simplified Technical English. STE is a controlled language. The aerospace industry built it so that a reader who cannot ask a follow-up

@zaferayan
zaferayan / PROMPT.md
Created August 12, 2026 15:49
Efektif AGENTS.md oluşturma prompt

Bu repo için AGENTS.md yaz. Amaç kural listesi değil: buraya yeni düşen bir kodlama ajanının (ve yeni ekip üyesinin) hangi hataları yapacağını önceden kesen bir harita.

AŞAMA 1 — Kanıt topla. Önce oku, sonra yaz. Uydurma yok.

  • package.json / pyproject / go.mod / Gemfile: script'ler, paket yöneticisi, runtime sürümü pinlenmiş mi (.nvmrc, engines, volta gerçekten var mı?)
  • Dizin ağacı (2 seviye). Aynı işi yapan iki klasör var mı? (api/ + apis/, navigations/ + routes/ gibi) — bunlar göç halinde, not al.
  • CI dosyaları: gerçekte hangi komutlar çalışıyor, hangileri lokalde gereksiz.
@wanglf
wanglf / vscode-extension-offline.md
Last active August 23, 2026 11:43
Download VS Code extensions as VSIX

How to use?

  • Copy content of vsix-bookmarklet, create a bookmark in your browser.
  • Navigate to the web page of the VS Code extension you want to install.
  • Click the bookmark you just created, then click the download button.
    download
  • After download finished, rename the file extension to *.vsix.
  • In VS Code, select Install from VSIX... in the extension context menu.
    vsc

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.